home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 March - Disc 1 / Macworld (1999-03) (Disk 1).dmg / Shareware World / Utilities / Text Processing / Alpha / Tcl / Menus / ftpMenu.tcl < prev    next >
Encoding:
Text File  |  1998-12-22  |  11.7 KB  |  451 lines  |  [TEXT/ALFA]

  1. ## -*-Tcl-*- (install)
  2. # ###################################################################
  3. #  Alpha - new Tcl folder configuration
  4. #  FILE: "ftpMenu.tcl"
  5. #                                    created: 20/7/96 {6:02:55 pm} 
  6. #                                last update: 22/12/1998 {10:52:51 pm} 
  7. #  
  8. #  Description: 
  9. # ###################################################################
  10. ##
  11.  
  12. alpha::menu ftpMenu 0.1.2 global "•141" {} {ftpMenu} {} uninstall {this-file} \
  13.   help {[editMark [file join $HOME Help "Alpha Manual"] "Ftp Browser" -r]}
  14.  
  15. hook::register savePostHook ftpPostHook
  16.  
  17. proc ftpMenu {} {}
  18.  
  19. proc ftpPostHook {name} {
  20.     global fetched
  21.     if {[info exists fetched($name)]} {
  22.     set specs $fetched($name)
  23.     # backwards compatibility
  24.     if {[lindex $specs 4] == ""} {
  25.         lappend specs "ftp"
  26.         set fetched($name) $specs
  27.     }
  28.     message "Updating '[file tail $name]' on [car $specs]…"
  29.     if {[string length [cadr $specs]]} {
  30.         ftpStore $name [car $specs] "[cadr $specs]/[file tail $name]" [caddr $specs] [cadddr $specs]
  31.     } else {
  32.         ftpStore $name [car $specs] "[file tail $name]" [caddr $specs] [cadddr $specs]
  33.     }
  34.     }
  35. }
  36.  
  37. proc rebuildFtpMenu {} {
  38.     global savedMounts recentMounts ftpMenu useCache
  39.     
  40.     Menu -n $ftpMenu -p ftpMenuProc {
  41.     help
  42.     "(-"
  43.     "<S/ibrowse…"
  44.     "<S/i<IbrowseCurrent…"
  45.     "/nbrowseMounts…"
  46.     "(-"
  47.     addMountPoint…
  48.     makePermanent…
  49.     removeMountPoint…
  50.     saveAsAt…
  51.     "(-"
  52.     useCache
  53.     flushCache
  54.     "(-"
  55.     "createFileset"
  56.     "(-"
  57.     }
  58.     markMenuItem -m $ftpMenu "Use Cache" $useCache
  59.     if {[info exists savedMounts]} {
  60.     foreach m [lsort -ignore [array names savedMounts]] {
  61.         addMenuItem -m -l "b " $ftpMenu $m
  62.     }
  63.     }
  64.     if {[info exists recentMounts]} {
  65.     addMenuItem -m $ftpMenu "(-"
  66.     foreach m [lsort -ignore [array names recentMounts]] {
  67.         addMenuItem -m -l "b " $ftpMenu $m
  68.     }
  69.     }
  70. }
  71.  
  72. if {![info exists useCache]} {set useCache 1}
  73.  
  74. app::registerMultiple ftp [list Arch FTCh] [list •141 •315] rebuildFtpMenu
  75.  
  76. proc mountPoints {} {
  77.     global savedMounts recentMounts
  78.     if {[info exists recentMounts]} {
  79.     if {[info exists savedMounts]} {
  80.         set l [concat [array names recentMounts] [array names savedMounts]]
  81.     } else {
  82.         set l [array names recentMounts]]
  83.     }
  84.     } else {
  85.     set l [array names savedMounts]
  86.     }
  87.     return [lsort $l]
  88. }
  89.  
  90.  
  91.  
  92. proc ftpMenuProc {menu item} {
  93.     global modifiedVars modifiedArrVars savedMounts recentMounts PREFS fetched HOME ftpMenu useCache createFtpType
  94.     switch -- $item {
  95.     help                {
  96.         editMark [file join $HOME Help "Alpha Manual"] "Ftp Browser" -r
  97.     }
  98.     browse                {
  99.         eval ftpBrowse [lrange [getLogin {Browse remote machine:} 0] 0 3]
  100.     }
  101.     browseCurrent        { 
  102.         if {[info exists fetched([win::Current])]} {
  103.         eval ftpBrowse $fetched([win::Current]) 
  104.         } else {
  105.         beep; message "'[win::CurrentTail]' not from remote host."
  106.         }
  107.     }
  108.     browseMounts        {
  109.         set l [mountPoints]
  110.         set res [listpick -p "Mount point:" $l]
  111.         if {[info exists recentMounts($res)]} {
  112.         eval ftpBrowse $recentMounts($res)
  113.         } else {
  114.         eval ftpBrowse $savedMounts($res)
  115.         }
  116.     }
  117.     
  118.     addMountPoint        { addMountPoint }
  119.     makePermanent        { makeMountPermanent }
  120.     createFileset        { newFileset ftp }
  121.     removeMountPoint    {
  122.         set pt [listpick -p "Remove which mount point?" [lsort -ignore [array names savedMounts]]]
  123.         unset savedMounts($pt)
  124.         removeArrDef savedMounts $pt
  125.         rebuildFtpMenu
  126.     }
  127.     saveAsAt            {
  128.         global fetched PREFS
  129.         set name [prompt "Name:" [win::CurrentTail]]
  130.         set point [listpick -p "At which mount point?" [mountPoints]]
  131.         if {[info exists recentMounts($point)]} {
  132.         set specs $recentMounts($point)
  133.         } else {
  134.         set specs $savedMounts($point)
  135.         }
  136.         # backwards compatibility
  137.         if {[lindex $specs 4] == ""} {
  138.         lappend specs "ftp"
  139.         }
  140.         set name [file join $PREFS ftptmp $name]
  141.         set fetched($name) $specs
  142.         message "Saving '$name' on [car $specs]…"
  143.         
  144.         if {![file exists $name]} {
  145.         set fid [open $name w]
  146.         close $fid
  147.         }
  148.         saveAs -f "$name"
  149.         
  150.         set num 0
  151.         set pathname [cadr $specs]
  152.         for {set i [expr [string length $pathname] - 1]} {$i >= 0} {incr i -1} {
  153.         scan $pathname "%c" char
  154.         incr num $char
  155.         }
  156.         
  157.         set nm [file join $PREFS ftptmp listing.$num]
  158.         catch {rm $nm}
  159.         
  160.         setWinInfo platform $createFtpType
  161.         setWinInfo dirty 1
  162.         save
  163.     }
  164.     
  165.     setDefaults            { 
  166.         global ftpDefaults modifiedVars
  167.         set ftpDefaults [lrange [getLogin "Enter defaults that you wish saved:" 0] 0 3]
  168.         lappend modifiedVars ftpDefaults
  169.     }
  170.     flushCache        { rm [file join $PREFS ftptmp *]; catch {unset recentMounts}; rebuildFtpMenu }
  171.     useCache    { 
  172.         set useCache [expr 1 - $useCache]
  173.         markMenuItem -m $ftpMenu "Use Cache" $useCache
  174.         lappend modifiedVars useCache
  175.     }
  176.     default {
  177.         if {[info exists recentMounts($item)]} {
  178.         eval ftpBrowse $recentMounts($item)
  179.         } else {
  180.         eval ftpBrowse $savedMounts($item)
  181.         }
  182.     }
  183.     }
  184. }
  185.  
  186.  
  187. proc ftpFilesetOpen {menu item} {
  188.     global gfileSets PREFS fetched fileSetsExtra
  189.     
  190.     if {[set ind [lsearch $gfileSets($menu) "*$item"]] >= 0} {
  191.     set f [lindex $gfileSets($menu) $ind]
  192.     set lnm [file tail $f]
  193.     regsub -all {:} $f {/} f
  194.     set nm [file join $PREFS ftptmp $lnm]
  195.     set specs $fileSetsExtra($menu)
  196.     # backwards compatibility
  197.     if {[lindex $specs 4] == ""} {
  198.         lappend specs "ftp"
  199.         set fileSetsExtra($menu) $specs
  200.     }
  201.     if {![file exists $nm]} {
  202.         ftpFetch $nm [car $specs] $f [caddr $specs] [cadddr $specs]
  203.     }
  204.     edit -w $nm
  205.     set fetched($nm) $specs
  206.     }
  207. }
  208.  
  209.  
  210. proc ftpCreateFileset {} {
  211.     global gfileSets gfileSetsType PREFS fileSetsExtra
  212.     
  213.     set specs [getLogin]
  214.     set name [car $specs]
  215.     set host [cadr $specs]
  216.     set path [caddr $specs]
  217.     set user [cadddr $specs]
  218.     set password [caddddr $specs]
  219.     set pattern "^[prompt {Name pattern?} {.*.[ch]}]$"
  220.     set path [string trimright $path {/}]
  221.     
  222.     set fileSetsExtra($name) [list $host $path $user $password "ftp"]
  223.     
  224.     if { ![file exists [file join $PREFS ftptmp]] } {
  225.     file mkdir [file join $PREFS ftptmp]
  226.     }
  227.     set nm [file join $PREFS ftptmp listing.$path]
  228.     ftpList $nm $host $path $user $password
  229.     set files {}
  230.     foreach f [processListing $nm] {
  231.     if {![string match {*/} $f] && [regexp $pattern $f]} {
  232.         lappend files "$path/$f"
  233.     }
  234.     }
  235.     regsub -all {/} $files {:} files
  236.     
  237.     global gfileSets gfileSetsType
  238.     set gfileSets($name) [lsort -command sortByTail $files]
  239.     set gfileSetsType($name) ftp
  240.     if {[askyesno "Save project fileset?"] == "yes"} {
  241.     addArrDef gfileSetsType $name ftp
  242.     addArrDef gfileSets $name  $gfileSets($name)
  243.     addArrDef fileSetsExtra $name $fileSetsExtra($name)
  244.     }
  245.     return $name
  246. }
  247.  
  248.  
  249. proc processListing {path} {
  250.     set fd [open $path "r"]
  251.     set lines [split [read $fd] "\n"]
  252.     close $fd
  253.     set files {}
  254.     if {[llength $lines]} {
  255.     if {[string length [lindex $lines 0]] <= 10} {
  256.         set lines [cdr [lreplace $lines end end]]
  257.     } else {
  258.         set lines [lreplace $lines end end]
  259.     }
  260.     foreach f $lines {
  261.         regexp {[A-Z][a-z]+ [0-9, ]+ [0-9,:]+ (.*)$} $f dummy nm
  262.         if {[string length $nm]} {
  263.         if {[string match "d*" $f]} {
  264.             if {![string match "." $nm] && ![string match ".." $nm]} {
  265.             lappend files "$nm/"
  266.             }
  267.         } else {
  268.             lappend files $nm
  269.         }
  270.         }
  271.     }
  272.     } else {
  273.     error "empty list"
  274.     }
  275.     return $files
  276. }
  277.  
  278. proc getLogin {{prompt {All but 'password' are required:}} {nm 1}} {
  279.     global ftpDefaults
  280.     if {[info exists ftpDefaults]} {
  281.     set defs $ftpDefaults
  282.     } else {
  283.     set defs {"" "" "" ""}
  284.     }
  285.     set left 10
  286.     set right 100
  287.     set top 10
  288.     set bottom 30
  289.     set eleft [expr $left + 100]
  290.     set eright 370
  291.     set incr 30
  292.     
  293.     set height 198
  294.     
  295.     if $nm {incr height $incr}
  296.     set l "dialog -w 400 -h $height -t [list $prompt] $left $top 400 $bottom"
  297.     
  298.     if {$nm} {
  299.     incr top $incr
  300.     incr bottom $incr
  301.     lappend l -t {Name:} $left $top $right $bottom
  302.     lappend l -e {} $eleft $top $eright $bottom
  303.     }
  304.     
  305.     incr top $incr
  306.     incr bottom $incr
  307.     lappend l -t {Host:} $left $top $right $bottom
  308.     lappend l -e [car $defs] $eleft $top $eright $bottom
  309.     
  310.     incr top $incr
  311.     incr bottom $incr
  312.     lappend l -t {Path:} $left $top $right $bottom
  313.     lappend l -e [cadr $defs] $eleft $top $eright $bottom
  314.     
  315.     incr top $incr
  316.     incr bottom $incr
  317.     lappend l -t {UserID:} $left $top $right $bottom
  318.     lappend l -e [caddr $defs] $eleft $top $eright $bottom
  319.     
  320.     incr top $incr
  321.     incr bottom $incr
  322.     lappend l -t {Password:} $left $top $right $bottom
  323.     lappend l -e [cadddr $defs] $eleft [expr $top + 6] $eright [expr $bottom - 12]
  324.     
  325.     incr top [expr $incr + 10]
  326.     incr bottom [expr $incr + 10]
  327.     lappend l -b "OK" $left $top $right [expr $top + 20]
  328.     lappend l -b "Cancel" [expr $left + 200] $top [expr $right + 200] [expr $top + 20]
  329.     
  330.     set res [eval "$l"]
  331.     if {[lindex $res end]} {error "Cancel"}
  332.     return $res
  333. }
  334.  
  335.  
  336. proc addMountPoint {} {
  337.     global savedMounts modifiedArrVars
  338.     
  339.     set res [getLogin]
  340.     if {[lindex $res 5]} {
  341.     set savedMounts([car $res]) [concat [lrange $res 1 4] "ftp"]
  342.     lappend modifiedArrVars savedMounts
  343.     rebuildFtpMenu
  344.     }
  345. }
  346.  
  347.  
  348. proc makeMountPermanent {} {
  349.     global recentMounts savedMounts modifiedArrVars
  350.     if {![info exists recentMounts]} {
  351.     alertnote "You have no temporary mounts."
  352.     return
  353.     }
  354.     set res [listpick -p "Make which temporary mount point permanent?" [lsort [array names recentMounts]]]
  355.     set name [prompt "Name?" $res]
  356.     set savedMounts($name) $recentMounts($res)
  357.     unset recentMounts($res)
  358.     lappend modifiedArrVars savedMounts
  359.     rebuildFtpMenu
  360. }
  361.  
  362.  
  363. proc ftpPromptBrowse {} {
  364.     eval ftpBrowse [lrange [getLogin {Browse remote machine:} 0] 0 3]
  365. }
  366.  
  367. proc ftpBrowse {host dir user password {type "ftp"} {fname {}}} {
  368.     global PREFS fetched lastFtpDir recentMounts savedMounts useCache
  369.     
  370.     watchCursor
  371.     if {![string length $password]} {
  372.     set password [dialog::password "Password for ${host}:"]
  373.     }
  374.     
  375.     if {![file exists [file join $PREFS ftptmp]]} {
  376.     file mkdir [file join $PREFS ftptmp]
  377.     }
  378.     if {$dir == {-}} {
  379.     if {![info exists lastFtpDir] || ![string length $lastFtpDir]} {set lastFtpDir ""}
  380.     set dir [prompt "'$host' dir:" $lastFtpDir]
  381.     }
  382.     set dir [string trimright $dir {/}]
  383.     set lastFtpDir $dir
  384.     
  385.     set num 0
  386.     for {set i [expr [string length $dir] - 1]} {$i >= 0} {incr i -1} {
  387.     scan [string index $dir $i] "%c" char
  388.     incr num $char
  389.     }
  390.     
  391.     set nm [file join $PREFS ftptmp listing.$num]
  392.     
  393.     if {!$useCache || ![file exists $nm]} {
  394.     ftpList $nm $host $dir $user $password
  395.     }
  396.     if {[catch {processListing $nm} listing]} {
  397.     alertnote "Error fetching directory '$dir'"
  398.     error "Error fetching directory '$dir'"
  399.     }
  400.     set files [concat {..} $listing]
  401.     if {$fname != ""} {
  402.     set file [listpick -L $fname -p "$dir/" $files]
  403.     } else {
  404.     set file [listpick -p "$dir/" $files]
  405.     }
  406.     
  407.     if {$file == {..}} {
  408.     if {[regexp {(.+)/[^/]+} $dir dummy sub]} {
  409.         return [ftpBrowse $host $sub $user $password]
  410.     } else {
  411.         return [ftpBrowse $host "" $user $password]
  412.     }
  413.     }
  414.     
  415.     if {[string match {*/} $file]} {
  416.     if {[string length $dir]} {
  417.         return [ftpBrowse $host [string trimright "$dir/$file" {/}] $user $password]
  418.     } else {
  419.         return [ftpBrowse $host [string trimright "$file" {/}] $user $password]
  420.     }
  421.     }
  422.     
  423.     set entry [list $host $dir $user $password $type]
  424.     set new 1
  425.     foreach name [array names savedMounts] {
  426.     if {([car $savedMounts($name)] == [car $entry]) && ([cadr $savedMounts($name)] == [cadr $entry])} {
  427.         set new 0
  428.         break;
  429.     }
  430.     }
  431.     if $new {
  432.     set recentMounts($dir) $entry
  433.     rebuildFtpMenu
  434.     }
  435.     
  436.     set nm [file join $PREFS ftptmp $file]
  437.     if {!$useCache || ![file exists $nm]} {
  438.     if {[string length $dir]} {
  439.         ftpFetch $nm $host "$dir/$file" $user $password
  440.     } else {
  441.         ftpFetch $nm $host "$file" $user $password
  442.     }
  443.     }
  444.     edit -w $nm
  445.     set fetched($nm) [list $host $dir $user $password "ftp"]
  446. }
  447.  
  448.  
  449.